home *** CD-ROM | disk | FTP | other *** search
/ Gamers Delight 2 / Gamers Delight 2.iso / Aminet / game / role / Ang261Lib.lha / src / undef.c < prev    next >
C/C++ Source or Header  |  1994-10-22  |  305b  |  28 lines

  1. /* undef.c: undefined routines */
  2.  
  3. #include "constant.h"
  4. #include "config.h"
  5. #include "types.h"
  6.  
  7. #if defined(SOLARIS)
  8. #include <string.h>
  9. #else
  10. #include <strings.h>
  11. #endif
  12.  
  13. #include <sys/file.h>
  14.  
  15. extern short        log_index;
  16.  
  17. void 
  18. init_files()
  19. {
  20. }
  21.  
  22. int 
  23. _new_log()
  24. {
  25.     log_index = 0;
  26.     return 1;
  27. }
  28.